Welcome to your first capstone project! This project is meant to cap off the first half of the course, which mainly dealt with learning the libraries that we use in this course, the second half of the course will deal a lot more with quantitative trading techniques and platforms.
We'll be analyzing stock data related to a few car companies, from Jan 1 2012 to Jan 1 2017. Keep in mind that this project is mainly just to practice your skills with matplotlib, pandas, and numpy. Don't infer financial trading advice from the analysis we do here!
Import the various libraries you will need-you can always just come back up here or import as you go along :)
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import pandas_datareader as web
import datetime
%matplotlib inline
*Note! Not everyone will be working on a computer that will give them open access to download the stock information using pandas_datareader (firewalls, admin permissions, etc...). Because of this, the csv file for the Tesla is provided in a data folder inside this folder. It is called Tesla_Stock.csv. Feel free to just use this with read_csv!
Use pandas_datareader to obtain the historical stock information for Tesla from Jan 1, 2012 to Jan 1, 2017.
beg_dt = datetime.datetime(2012,1,1)
end_dt = datetime.datetime(2017,1,1)
stk_tsla = web.DataReader('TSLA', 'yahoo', beg_dt, end_dt)
stk_tsla.head()
Repeat the same steps to grab data for Ford and GM (General Motors),
stk_f = web.DataReader('F', 'yahoo', beg_dt, end_dt)
stk_f.head()
stk_gm = web.DataReader('GM', 'yahoo', beg_dt, end_dt)
stk_gm.head()
Time to visualize the data.
Follow along and recreate the plots below according to the instructions and explanations.
Recreate this linear plot of all the stocks' Open price ! Hint: For the legend, use label parameter and plt.legend()
# Code Here
# dates not formatted the same way. Need major divider at 6 months with %Y-%m format
df = pd.DataFrame(stk_tsla['Open'])
df.rename(columns={'Open' : 'Tesla'}, inplace=True)
df['GM'] = stk_gm['Open']
df['Ford'] = stk_f['Open']
df.plot(figsize=(16,7), title='Open Price');
# Jose did it much simpler without making a dataframe
stk_tsla['Close'].plot(label='Tesla', figsize=(16,8), title='Open Price')
stk_gm['Close'].plot(label='GM')
stk_f['Close'].plot(label='Ford')
# you can hide the <matplotlib.legend.....> stuff by putting a semicolon after the below line
plt.legend();
Plot the Volume of stock traded each day.
df2 = pd.DataFrame(stk_tsla['Volume'])
df2.rename(columns={'Volume': 'Tesla'}, inplace=True)
df2['GM'] = stk_gm['Volume']
df2['Ford'] = stk_f['Volume']
df2.plot(figsize=(16,7), title='Volume Traded')
# again, this can be done simply without making a new dataframe
stk_tsla['Volume'].plot(label='Tesla', figsize=(16,7), title='Volume Traded')
stk_gm['Volume'].plot(label='GM')
stk_f['Volume'].plot(label='Ford')
plt.legend();
Interesting, looks like Ford had a really big spike somewhere in late 2013. What was the date of this maximum trading volume for Ford?
Bonus: What happened that day?
# there has to be an easier way to do this
df2.index.values[df2['Ford'].argmax()]
# OK, the answer was wrong in Jose's video because it only gave the line number
# this was the answer: stk_f['Volume'].argmax()
# therefore it's important to pull the index value of that line number using stk_f.index.values[]
stk_f.index.values[stk_f['Volume'].argmax()]
The Open Price Time Series Visualization makes Tesla look like its always been much more valuable as a company than GM and Ford. But to really understand this we would need to look at the total market cap of the company, not just the stock price. Unfortunately our current data doesn't have that information of total units of stock present. But what we can do as a simple calcualtion to try to represent total money traded would be to multply the Volume column by the Open price. Remember that this still isn't the actual Market Cap, its just a visual representation of the total amount of money being traded around using the time series. (e.g. 100 units of stock at \$10 each versus 100000 units of stock at $1 each)
Create a new column for each dataframe called "Total Traded" which is the Open Price multiplied by the Volume Traded.
# Code Here
stk_tsla['Total Traded'] = stk_tsla['Open'] * stk_tsla['Volume']
stk_gm['Total Traded'] = stk_gm['Open'] * stk_gm['Volume']
stk_f['Total Traded'] = stk_f['Open'] * stk_f['Volume']
Plot this "Total Traded" against the time index.
# Code here
df3 = pd.DataFrame(stk_tsla['Total Traded'])
df3.rename(columns={'Total Traded' : 'Tesla'}, inplace=True)
df3['GM'] = stk_gm['Total Traded']
df3['Ford'] = stk_f['Total Traded']
ax = df3.plot(figsize=(16,7))
ax.set_ylabel('Total Traded')
# again, making a new dataframe is not necessary - he didn't focus on the y axis label
stk_tsla['Total Traded'].plot(label='Tesla', figsize=(16,7), title='Total Traded')
stk_gm['Total Traded'].plot(label='GM')
stk_f['Total Traded'].plot(label='Ford')
plt.legend();
Interesting, looks like there was huge amount of money traded for Tesla somewhere in early 2014. What date was that and what happened?
df3.index.values[df3['Tesla'].argmax()]
Let's practice plotting out some MA (Moving Averages). Plot out the MA50 and MA200 for GM.
# Code here
stk_gm['MA50'] = stk_gm['Open'].rolling(window=50).mean()
stk_gm['MA200'] = stk_gm['Open'].rolling(window=200).mean()
stk_gm[['Open', 'MA50', 'MA200']].plot(figsize=(16,8))
Finally lets see if there is a relationship between these stocks, after all, they are all related to the car industry. We can see this easily through a scatter matrix plot. Import scatter_matrix from pandas.plotting and use it to create a scatter matrix plot of all the stocks'opening price. You may need to rearrange the columns into a new single dataframe. Hints and info can be found here: https://pandas.pydata.org/pandas-docs/stable/visualization.html#scatter-matrix-plot
from pandas.plotting import scatter_matrix
scatter_matrix(df, figsize=(8,8), hist_kwds={'bins':50})
# in making the dataframe df, I worked too hard here's an easy way to assemble the dataframe in two lines
# this line is wrong because it passes the data as series:
# car_comp = pd.concat(stk_tsla['Open'], stk_gm['Open'], stk_f['Open'])
# instead, enclose the series in brackets and specify axis=1
car_comp = pd.concat([stk_tsla['Open'], stk_gm['Open'], stk_f['Open']], axis=1)
car_comp.columns = ['Tesla Open', 'GM Open', 'Ford Open']
# then just graph the dataframe
# BTW, the bins is passed in as a dictionary hence the brackets bins is the key
scatter_matrix(car_comp, figsize=(8,8), alpha = 0.2, hist_kwds={'bins' : 50});
Let's now create a candlestick chart! Watch the video if you get stuck on trying to recreate this visualization, there are quite a few steps involved!Refer to the video to understand how to interpret and read this chart. Hints: https://matplotlib.org/examples/pylab_examples/finance_demo.html
Create a CandleStick chart for Ford in January 2012 (too many dates won't look good for a candlestick chart)
f_beg_date = datetime.datetime(2012,1,1)
f_end_date = datetime.datetime(2012,2,1)
stk_f.head()
# create filtered dataframe
df4 = stk_f[(stk_f.index >= f_beg_date) & (stk_f.index < f_end_date)]
df4
# candlestick chart done via plotly
import plotly.graph_objects as go
fig = go.Figure(data=[go.Candlestick(x=df4.index,
open=df4['Open'],
high=df4['High'],
low=df4['Low'],
close=df4['Close'])])
fig.show()
# use the matplotlib libraries for candlesticks
import mplfinance as mpf
# the default is bar charts - the type code for this is 'ohlc' - default for volume is False
mpf.plot(df4)
# use the matplotlib libraries for candlesticks
import mplfinance as mpf
# the default is bar charts - the type code for this is 'ohlc'- here's with volume on
mpf.plot(df4, volume=True)
# use the matplotlib libraries for candlesticks (needed to pip install this library)
import mplfinance as mpf
# here is the candlestick format
mpf.plot(df4, type='candle')
# use the matplotlib libraries for candlesticks (needed to pip install this library)
import mplfinance as mpf
# here is the candlestick format with volume
mpf.plot(df4, type='candle', volume=True)
import mplfinance as mpf
from matplotlib.dates import date2num, DateFormatter, WeekdayLocator, DayLocator, MONDAY
# here is an easier way to get a filtered dataframe for just that January's data
# also the .reset_index() moves the Date field out of the index to be just a field but still a datetime
ford_reset = stk_f.loc['2012-01'].reset_index()
ford_reset.info()
# calculate a new column converting the Date field to be a number
ford_reset['date_ax'] = ford_reset['Date'].apply(lambda date : date2num(date))
ford_reset.head()
# this is the order of fields expected for the box plot
list_of_cols = ['date_ax', 'Open', 'High', 'Low', 'Close']
ford_values = [tuple(vals) for vals in ford_reset[list_of_cols].values ]
# the above makes a bunch of tuple values where each tuple is a row of the column values
ford_values
# all of Jose's work above is no longer necessary because the new mplfinance library does it all automatically
# https://github.com/matplotlib/mplfinance
# mpf.plot(data)
# where data is a Pandas DataFrame object containing Open, High, Low and Close data, with a Pandas DatetimeIndex
ford_reset2 = stk_f.loc['2012-01']
mpf.plot(ford_reset2, type='candle')
Now it is time to focus on a few key financial calculations. This will serve as your transition to the second half of the course. All you need to do is follow along with the instructions, this will mainly be an exercise in converting a mathematical equation or concept into code using python and pandas, something we will do often when working with quantiative data! If you feel very lost in this section, don't worry! Just go to the solutions lecture and treat it as a code-along lecture, use whatever style of learning works best for you!
Let's begin!
First we will begin by calculating the daily percentage change. Daily percentage change is defined by the following formula:
$ r_t = \frac{p_t}{p_{t-1}} -1$
This defines r_t (return at time t) as equal to the price at time t divided by the price at time t-1 (the previous day) minus 1. Basically this just informs you of your percent gain (or loss) if you bought the stock on day and then sold it the next day. While this isn't necessarily helpful for attempting to predict future values of the stock, its very helpful in analyzing the volatility of the stock. If daily returns have a wide distribution, the stock is more volatile from one day to the next. Let's calculate the percent returns and then plot them with a histogram, and decide which stock is the most stable!
Create a new column for each dataframe called returns. This column will be calculated from the Close price column. There are two ways to do this, either a simple calculation using the .shift() method that follows the formula above, or you can also use pandas' built in pct_change method.
Tesla Calculations
stk_tsla['returns'] = (stk_tsla['Close'] / stk_tsla.shift(periods=1)['Close'])-1
stk_tsla.head()
# another way to do this is to use the built-in method in pandas to calculate this field
stk_tsla['returns'] = stk_tsla['Close'].pct_change(1)
stk_tsla.head()
Ford Calculations
stk_f['returns'] = (stk_f['Close'] / stk_f.shift(periods=1)['Close'])-1
stk_f.head()
stk_f['returns'] = stk_f['Close'].pct_change(1)
stk_gm['returns'] = stk_gm['Close'].pct_change(1)
stk_tsla['returns'] # single brackets return a series
stk_tsla[['returns']] # double brackets returns a dataframe
GM Calculations
stk_gm['MA50'] = stk_gm['Close'].rolling(window=50).mean()
stk_gm['MA200'] = stk_gm['Close'].rolling(200).mean()
stk_gm['returns'] = (stk_gm['Close'] / stk_gm.shift(periods=1)['Close'])-1
stk_gm.head()
Now plot a histogram of each companies returns. Either do them separately, or stack them on top of each other. Which stock is the most "volatile"? (as judged by the variance in the daily returns we will discuss volatility in a lot more detail in future lectures.)
stk_f['returns'].hist(bins=50)
stk_gm['returns'].hist(bins=50)
stk_tsla['returns'].hist(bins=50)
# assemble dataframe
df5 = pd.DataFrame(stk_tsla['returns'])
df5.rename(columns={'returns' : 'Tesla'}, inplace=True)
df5['GM'] = stk_gm['returns']
df5['Ford'] = stk_f['returns']
# chart dataframe
fig = plt.figure(figsize=(12,6))
plt.hist(df5['Tesla'], bins=100, alpha=0.5)
plt.hist(df5['GM'], bins=100, alpha=0.5)
plt.hist(df5['Ford'], bins=100, alpha=0.5)
plt.grid()
plt.legend(df5)
# the above method is way too much work - a simpler way to do this is the following
stk_tsla['returns'].hist(bins=100, figsize=(12,6), label='Tesla', alpha=0.5)
stk_gm['returns'].hist(bins=100, label='GM', alpha=0.5)
stk_f['returns'].hist(bins=100, label='Ford', alpha=0.5)
plt.legend(); # this last piece turns on the legend with the labels and the ";" supresses the code above the chart
# the purpose of the histogram is to compare the VOLATILITY of returns between stocks Tesla as most, Ford as least
Try also plotting a KDE instead of histograms for another view point. Which stock has the widest plot?
# chart dataframe (dataframe assembled already above)
df5.plot.density(figsize=(12,6))
# again, this took work to assemble the dataframe - here's how to do it simpler
stk_tsla['returns'].plot.density(figsize=(12,6), label='Tesla')
stk_gm['returns'].plot.density(label='GM')
stk_f['returns'].plot.density(label='Ford')
plt.legend();
# the purpose of this chart is to compare the STABILITY of the different stocks with Ford being the highest and
# Tesla being the lowest in terms of density of data
Try also creating some box plots comparing the returns.
# there is no easier way to do box plots so all of the columns need to be in a single dataframe
df5.plot.box(figsize=(8,12)).set_xlabel('Returns')
# perhaps an easier way to assemble the dataframe though - two lines
box_df = pd.concat([stk_tsla['returns'], stk_gm['returns'], stk_f['returns']], axis=1)
box_df.columns = ['Tesla Returns', 'GM Returns', 'Ford Returns']
box_df.plot.box(figsize=(8,12));
# this is another way to analyze stocks to show the volatility between the stocks
Create a scatter matrix plot to see the correlation between each of the stocks daily returns. This helps answer the questions of how related the car companies are. Is Tesla begin treated more as a technology company rather than a car company by the market?
from pandas.plotting import scatter_matrix
df5.rename(columns={'Tesla' : 'Tesla Returns', 'GM' : 'GM Returns', 'Ford' : 'Ford Returns'}, inplace=True)
scatter_matrix(df5, figsize=(8,8), hist_kwds={'bins':50})
from pandas.plotting import scatter_matrix
scatter_matrix(box_df, figsize=(8,8), hist_kwds={'bins':50}, alpha=0.2);
It looks like Ford and GM do have some sort of possible relationship, let's plot just these two against eachother in scatter plot to view this more closely!
df5.plot.scatter(x='GM Returns', y='Ford Returns', figsize=(10,8), alpha=0.5)
Great! Now we can see which stock was the most wide ranging in daily returns (you should have realized it was Tesla, our original stock price plot should have also made that obvious).
With daily cumulative returns, the question we are trying to answer is the following, if I invested $1 in the company at the beginning of the time series, how much would is be worth today? This is different than just the stock price at the current day, because it will take into account the daily returns. Keep in mind, our simple calculation here won't take into account stocks that give back a dividend. Let's look at some simple examples:
Lets us say there is a stock 'ABC' that is being actively traded on an exchange. ABC has the following prices corresponding to the dates given
Date Price
01/01/2018 10
01/02/2018 15
01/03/2018 20
01/04/2018 25
Daily Return : Daily return is the profit/loss made by the stock compared to the previous day. (This is what ew just calculated above). A value above one indicates profit, similarly a value below one indicates loss. It is also expressed in percentage to convey the information better. (When expressed as percentage, if the value is above 0, the stock had give you profit else loss). So for the above example the daily returns would be
Date Daily Return %Daily Return
01/01/2018 10/10 = 1 -
01/02/2018 15/10 = 3/2 50%
01/03/2018 20/15 = 4/3 33%
01/04/2018 25/20 = 5/4 20%
Cumulative Return: While daily returns are useful, it doesn't give the investor a immediate insight into the gains he had made till date, especially if the stock is very volatile. Cumulative return is computed relative to the day investment is made. If cumulative return is above one, you are making profits else you are in loss. So for the above example cumulative gains are as follows
Date Cumulative Return %Cumulative Return
01/01/2018 10/10 = 1 100 %
01/02/2018 15/10 = 3/2 150 %
01/03/2018 20/10 = 2 200 %
01/04/2018 25/10 = 5/2 250 %
The formula for a cumulative daily return is:
$ i_i = (1+r_t) * i_{t-1} $
Here we can see we are just multiplying our previous investment at i at t-1 by 1+our percent returns. Pandas makes this very simple to calculate with its cumprod() method. Using something in the following manner:
df[daily_cumulative_return] = ( 1 + df[pct_daily_return] ).cumprod()
Create a cumulative daily return column for each car company's dataframe.
stk_tsla['Cumulative Return'] = (1 + ((stk_tsla['Close']/stk_tsla['Close'].shift(periods=1)-1))).cumprod()
stk_tsla.head()
# I did too much work. The returns column was already computed so the quickest way was to use it
stk_tsla['Cumulative Return'] = (1 + stk_tsla['returns']).cumprod()
stk_tsla.head()
Now plot the Cumulative Return columns against the time series index. Which stock showed the highest return for a $1 invested? Which showed the lowest?
# do the cumulative return calculations for Ford & GM as well as rename the column in Tesla table in prep for join
stk_gm['GM'] = (1 + ((stk_gm['Close']/stk_gm['Close'].shift(periods=1)-1))).cumprod()
stk_f['Ford'] = (1 + ((stk_f['Close']/stk_f['Close'].shift(periods=1)-1))).cumprod()
stk_tsla.rename(columns={'Cumulative Return' : 'Tesla'}, inplace=True)
stk_gm['Cumulative Return'] = (1 + stk_gm['returns']).cumprod()
stk_f['Cumulative Return'] = (1 + stk_f['returns']).cumprod()
# this only get you a panda series - can't be used in joins
# stk_gm[('GM')]
# these produce DataFrame objects that can be used in the join
# pd.DataFrame(stk_tsla['Tesla'])
# pd.DataFrame(stk_gm['GM'])
# pd.DataFrame(stk_f['Ford'])
# assemble a list of dataframes
dfs = [pd.DataFrame(stk_tsla['Tesla']), pd.DataFrame(stk_gm['GM']), pd.DataFrame(stk_f['Ford'])]
# then join the dataframes in the list on the common indices and build a plot on top of it
dfs[0].join(dfs[1:]).plot(figsize=(16,8), title='Cumulative Return')
# again, too much work this is so much easier
stk_tsla['Cumulative Return'].plot(figsize=(16,8), label='Tesla', title='Cumulative Return')
stk_gm['Cumulative Return'].plot(label='GM')
stk_f['Cumulative Return'].plot(label='Ford')
plt.legend();
That is it for thsi very basic analysis, this concludes this half of the course, which focuses much more on learning the tools of the trade. The second half of the course is where we really dive into functionality designed for time series, quantitative analysis, algorithmic trading, and much more!